home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / MiniExamples / IndexingKit / RecordManager / Controller.h next >
Text File  |  1995-06-12  |  650b  |  38 lines

  1. /* Controller.h:
  2.  * You may freely copy, distribute, and reuse the code in this example.
  3.  * NeXT disclaims any warranty of any kind, expressed or  implied, as to its
  4.  * fitness for any particular use.
  5.  *
  6.  *
  7.  */
  8.  
  9. #import <appkit/appkit.h>
  10.  
  11. #define DBFILENAME    ".data"
  12.  
  13. #define DBNAME        "TestDatabase"
  14.  
  15. @interface Controller:Object
  16. {
  17.     id    addButton;
  18.     id    dataForm;
  19.     id    deleteButton;
  20.     id    editButton;
  21.     id    idField;
  22.     id    recBrowser;
  23.     id    searchForm;
  24.     id    allSwitch;
  25.     id    recMan;
  26.     id    postingList;
  27. }
  28.  
  29. - commit;
  30. - clear:sender;
  31. - addARecord:sender;
  32. - browserHit:sender;
  33. - deleteRecord:sender;
  34. - editRecord:sender;
  35. - search:sender;
  36.  
  37. @end
  38.